home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 February / february_2000.iso / site building / GoLive 4.0 Tryout / data1.cab / Apps / Modules / JScripts / GlobalScripts / StyleVis.scpt < prev   
Encoding:
Text File  |  1999-08-05  |  316 b   |  5 lines

  1. function CSSetStyleVis(s,v) { if (IsIE()) CSIEStyl(s).visibility = (v == 0) ? "hidden" : "visible";
  2.     else CSNSStyl(s).visibility = (v == 0) ? 'hide' : 'show'; }
  3. function CSGetStyleVis(s) { if (IsIE()) return (CSIEStyl(s).visibility == "hidden") ? 0 : 1;
  4.     else return (CSNSStyl(s).visibility == 'hide') ? 0 : 1;}
  5.